home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / swap300.zip / SWAPTEST.MSC < prev    next >
Text File  |  1990-10-04  |  563b  |  21 lines

  1. # Makes SWAPTEST.EXE in Small memory model (Microsoft C, versions
  2. #   5.10 and 6.00).  Enter "make swaptest.msc" at DOS command prompt.
  3.  
  4. MASMDEFS= /W2 /D_Small /mx
  5. MSCDEFS= /c /W3 /AS
  6. LINKDEFS=/MAP/STACK:1024
  7.  
  8. swaps.obj:              swap.asm
  9.             masm $(MASMDEFS) swap.asm, swaps.obj;
  10.  
  11. swaptest.obj:           swaptest.c \
  12.                         swap.h
  13.             cl $(MSCDEFS) swaptest.c
  14.  
  15. swaptest.exe:           swaps.obj \
  16.                         swaptest.obj
  17.             link $(LINKDEFS) swaps + swaptest, swaptest, swaptest;
  18.  
  19.  
  20.  
  21.